Quick Start a Process Library from Scratch in Three Steps
1. Copy/Paste/Run this command in a terminal
Navigate to the folder you want to become the root of your new Process Library.
Windows
Invoke-WebRequest 'https://stanhope.strativusgroup.com/latest/assets.zip' -OutFile 'assets.zip'; Invoke-WebRequest 'https://stanhope.strativusgroup.com/latest/DocumentList.xlsx' -OutFile 'DocumentList.xlsx'; Invoke-WebRequest 'https://stanhope.strativusgroup.com/latest/windows/stanhope.exe' -OutFile 'stanhope.exe'; Expand-Archive -Path assets.zip -DestinationPath .; Invoke-Item DocumentList.xlsx
MacOS
wget 'https://stanhope.strativusgroup.com/latest/assets.zip'; wget 'https://stanhope.strativusgroup.com/latest/DocumentList.xlsx'; wget 'https://stanhope.strativusgroup.com/latest/macos/stanhope'; chmod +x stanhope; unzip assets.zip; open DocumentList.xlsx;
Linux x86-64
wget 'https://stanhope.strativusgroup.com/latest/assets.zip'; wget 'https://stanhope.strativusgroup.com/latest/DocumentList.xlsx'; wget 'https://stanhope.strativusgroup.com/latest/linux/stanhope'; chmod +x stanhope; unzip assets.zip; xdg-open DocumentList.xlsx;
2. When the Spreadsheet pops up, fill it out for all of your needed processes
Delete the contents of the sample/placeholder rows in the spreadsheet
When complete, Export the spreadsheet as a CSV file in the same location (root of the Process Folder).
3. Let stanhope create and pre-populate all of your Process Folders!
Run this command from the same location (root of the Process Folder):
./stanhope -vl ./DocumentList.csv
Verify that there are as many new process folders as filled-out rows in your spreadsheet
Next: How to Jam